/* ═══════════════════════════════════════════════════════════
   GOLDEN PALM — Ultra-Luxury Redesign Layer
   Emerald + gold · glass · cinematic depth
═══════════════════════════════════════════════════════════ */

:root {
  --fSerif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fBodyLux: 'Inter', 'Neue Haas Grotesk', 'Manrope', system-ui, sans-serif;
  --glass-bg: rgba(8, 28, 22, 0.42);
  --glass-border: rgba(212, 175, 75, 0.16);
  --glass-blur: blur(20px) saturate(1.25);
  --spotlight: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(212, 175, 75, 0.14) 0%, transparent 68%);
  --lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[lang="ar"] {
  --fSerif: 'HSN Shahd', 'Noto Sans Arabic', Georgia, serif;
  --fBodyLux: 'HSN Shahd', 'Noto Sans Arabic', sans-serif;
}

html[lang="en"] {
  --fSerif: 'Acumin Digits', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fBodyLux: 'Acumin Digits', 'Inter', 'Neue Haas Grotesk', 'Manrope', system-ui, sans-serif;
}

/* ── Ambient background system ── */
.lux-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lux-ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: luxFloatGlow 18s ease-in-out infinite alternate;
}

.lux-ambient__glow--1 {
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  top: -12%;
  inset-inline-start: -8%;
  background: radial-gradient(circle, rgba(14, 58, 42, 0.9) 0%, transparent 70%);
}

.lux-ambient__glow--2 {
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  bottom: 8%;
  inset-inline-end: -6%;
  background: radial-gradient(circle, rgba(212, 175, 75, 0.12) 0%, transparent 72%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.lux-ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  position: relative;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(18, 52, 38, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(8, 32, 24, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 80%, rgba(212, 175, 75, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #030f0c 0%, #051810 38%, #061410 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.38) 100%);
}

body > main,
body > footer,
body > .home-hero-wrap,
body > .page-content,
body > .home-below-hero {
  position: relative;
  z-index: 1;
}

/* ── Typography refinement ── */
.section-title {
  font-family: var(--fSerif);
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.section-desc,
.hero-sub {
  font-family: var(--fBodyLux);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: rgba(244, 239, 228, 0.82);
}

.eyebrow {
  font-family: var(--fBodyLux);
  letter-spacing: 0.18em;
  color: rgba(212, 175, 75, 0.92);
}

html[lang="ar"] .section-title em,
html[lang="ar"] em {
  font-style: normal;
}

/* ── Luxury loader ── */
.lux-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030f0c;
  transition: opacity 0.7s var(--lux-ease), visibility 0.7s;
}

.lux-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader__inner {
  text-align: center;
}

.lux-loader__mark {
  font-family: var(--fSerif);
  font-size: 2.5rem;
  letter-spacing: 0.35em;
  color: var(--gold-mid);
  margin-bottom: 20px;
  animation: luxLoaderPulse 1.6s ease-in-out infinite;
}

.lux-loader__line {
  width: 120px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
  animation: luxLoaderLine 1.4s var(--lux-ease) infinite;
}

@keyframes luxLoaderPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes luxLoaderLine {
  0% { transform: scaleX(0.2); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.2); opacity: 0.4; }
}

/* ── Hero load reveal ── */
.hero-content.hero-reveal-ready {
  animation: heroContentReveal 1.1s var(--lux-ease) 0.15s both;
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Glass stats band ── */
.stats-band {
  background: transparent;
  border-color: var(--glass-border);
  gap: 0;
}

.stat-item {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 32px);
  transition: transform 0.5s var(--lux-ease), box-shadow 0.5s, border-color 0.5s;
}

.stat-item + .stat-item {
  border-inline-start: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset-inline: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 75, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 75, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(212, 175, 75, 0.06);
}

.stat-item:hover::before {
  opacity: 1;
}

/* ── Luxury testimonial / quote ── */
.lux-testimonial {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) clamp(32px, 5vw, 56px);
  text-align: center;
}

.lux-testimonial__panel {
  position: relative;
  padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.lux-testimonial__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spotlight);
  pointer-events: none;
}

.lux-testimonial__mark {
  display: block;
  font-family: var(--fSerif);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.7;
  color: rgba(212, 175, 75, 0.22);
  margin-bottom: 8px;
  user-select: none;
}

.lux-testimonial__text {
  position: relative;
  font-family: var(--fSerif);
  font-size: var(--lux-testimonial-size, clamp(1.4rem, 2.6vw, 2rem));
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

html[lang="ar"] .lux-testimonial__text {
  font-style: normal;
}

.lux-testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lux-testimonial__footer:not(:has(.lux-testimonial__avatar)) {
  padding-top: 4px;
}

.about-testimonial-section .lux-testimonial {
  max-width: 800px;
}

.about-testimonial-section .lux-testimonial__mark {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 4px;
}

.about-testimonial-section .lux-testimonial__text {
  margin-bottom: 24px;
}

.lux-testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 75, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lux-testimonial__author {
  font-family: var(--fBodyLux);
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-align: start;
}

.lux-testimonial__role {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}

.lux-testimonial--slide.reveal {
  transform: translateY(32px);
}

.lux-testimonial--slide.reveal.in {
  transform: none;
}

/* ── Glass feature cards (about + global) ── */
.about-features.about-features--glass {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .about-features.about-features--glass {
    grid-template-columns: 1fr;
  }
}

.feature--glass {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 30px);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--lux-ease), box-shadow 0.45s, border-color 0.45s;
}

.feature--glass::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--lux-ease);
}

.feature--glass:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 75, 0.26);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 175, 75, 0.05);
}

.feature--glass:hover::after {
  transform: scaleX(1);
}

.feature--glass .feature-bar {
  display: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 75, 0.22);
  background: rgba(212, 175, 75, 0.06);
  color: var(--gold-light);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature--glass h4 {
  font-family: var(--fSerif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature--glass p {
  font-family: var(--fBodyLux);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── About landmarks header ── */
.about-landmarks-section {
  padding-top: clamp(40px, 5vw, 64px);
}

.about-landmarks-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  gap: 0;
}

.about-landmarks-head__title {
  margin-top: 12px;
}

.about-landmarks-head__desc {
  margin: 16px auto 0;
  max-width: 56ch;
}

/* ── About story + luxury info bar ── */
.about-story-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.about-story-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.about-story-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-story-head__title {
  margin-top: 12px;
  line-height: 1.15;
}

.gold-rule--center {
  margin-inline: auto;
}

.about-story-desc {
  margin-top: clamp(20px, 3vw, 28px);
  max-width: 58ch;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.about-story-features {
  margin-top: clamp(36px, 5vw, 56px);
}

.about-story-features .feature--glass {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 3.5vw, 36px) clamp(20px, 2.5vw, 28px);
}

.about-story-features .feature-icon {
  margin-bottom: 4px;
}

.about-story-features .feature--glass h4 {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 10px;
}

.about-story-features .feature--glass p {
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  line-height: 1.65;
  max-width: 28ch;
  margin-inline: auto;
}

.about-lux-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  margin: clamp(48px, 6vw, 72px) 0 0;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid rgba(212, 175, 75, 0.18);
  border-bottom: 1px solid rgba(212, 175, 75, 0.18);
}

.about-lux-bar__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(16px, 2.5vw, 36px);
  min-width: 0;
}

.about-lux-bar__item:not(:last-child) {
  border-inline-end: 1px solid rgba(212, 175, 75, 0.22);
}

.about-lux-bar__value {
  display: block;
  font-family: var(--fSerif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--gold-mid);
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-lux-bar__unit {
  font-size: 0.62em;
  color: var(--gold-light);
}

.about-lux-bar__label {
  display: block;
  margin-top: 8px;
  font-family: var(--fBodyLux);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.45;
}

.about-lux-bar__item--statement {
  flex: 1.15 1 0;
}

.about-lux-bar__statement {
  display: block;
  font-family: var(--fSerif);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.about-lux-bar__sub {
  display: block;
  margin-top: 8px;
  font-family: var(--fBodyLux);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Landmarks slider luxury ── */
.landmarks-slider {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.landmark-slide img {
  transition: transform 8s var(--lux-ease);
}

.landmark-slide.is-active img {
  transform: scale(1.04);
}

.landmark-caption {
  background: linear-gradient(to top, rgba(5, 24, 16, 0.92), transparent);
  font-family: var(--fSerif);
  letter-spacing: 0.04em;
}

/* ── Section alt panels ── */
.section--alt {
  position: relative;
  background: transparent;
  border: none;
}

.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 42, 32, 0.35) 0%, transparent 50%, rgba(14, 42, 32, 0.2) 100%),
    var(--spotlight);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  pointer-events: none;
}

.section--alt > * {
  position: relative;
  z-index: 1;
}

/* ── Category & listing cards glass upgrade ── */
.lux-cat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: transform 0.55s var(--lux-ease), box-shadow 0.55s, border-color 0.55s;
}

.lux-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 75, 0.3);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38), 0 0 40px rgba(212, 175, 75, 0.06);
}

.lux-listing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: transform 0.5s var(--lux-ease), box-shadow 0.5s, border-color 0.5s;
}

.lux-listing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 75, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

/* ── Page hero inner ── */
.page-hero {
  position: relative;
  border-bottom: 1px solid var(--glass-border);
  background: transparent;
  overflow: hidden;
}

.page-hero:not(.page-hero--off-plan):not(.page-hero--ready):not(.page-hero--category)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spotlight);
  pointer-events: none;
}

.page-hero:not(.page-hero--has-media):not(.page-hero--off-plan):not(.page-hero--ready):not(.page-hero--category) > * {
  position: relative;
}

.page-hero--has-media .page-hero__inner {
  position: relative;
}

/* ── Page hero — CMS video/image background ── */
.page-hero--wide {
  max-width: none;
  margin-inline: 0;
}

.page-hero--centered {
  text-align: center;
}

.page-hero--centered .section-desc {
  margin-inline: auto;
}

.page-hero--has-media {
  min-height: clamp(280px, 38vh, 440px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom-color: rgba(212, 175, 75, 0.22);
  background: var(--navy-deep);
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) clamp(24px, 5vw, 48px) clamp(36px, 5vw, 56px);
}

.page-hero--has-media::before {
  content: none;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.page-hero__media--image {
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6, 14, 26, 0.9) 0%, rgba(6, 14, 26, 0.62) 42%, rgba(14, 42, 32, 0.32) 100%),
    linear-gradient(180deg, rgba(6, 14, 26, 0.22) 0%, rgba(6, 14, 26, 0.86) 100%);
}

.page-hero--has-media .page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.page-hero--has-media .section-title,
.page-hero--has-media .section-desc,
.page-hero--has-media .eyebrow {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.page-hero--has-media .section-title em {
  color: var(--gold-light);
}

.page-hero--has-media .eyebrow--gold {
  color: var(--gold-light);
}

/* ── Enhanced reveals ── */
.reveal {
  transform: translateY(28px);
  transition: opacity 0.85s var(--lux-ease), transform 0.85s var(--lux-ease);
}

/* Above-fold heroes: visible immediately (no empty gap on load / locale switch) */
.page-hero,
.page-hero--has-media,
.lux-detail-hero {
  opacity: 1;
  transform: none;
}

.reveal--fade {
  transform: none;
  opacity: 0;
}

.reveal--fade.in {
  opacity: 1;
}

/* ── Navbar glass on scroll ── */
#navbar.scrolled {
  background: rgba(5, 24, 16, 0.92) !important;
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(212, 175, 75, 0.18) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .about-story-desc {
    max-width: none;
  }

  .about-story-features .feature--glass p {
    max-width: none;
  }

  .about-lux-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: clamp(24px, 4vw, 32px) 0;
  }

  .about-lux-bar__item {
    padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 24px);
    border: none;
  }

  .about-lux-bar__item:nth-child(1) {
    border-inline-end: 1px solid rgba(212, 175, 75, 0.22);
    border-bottom: 1px solid rgba(212, 175, 75, 0.22);
  }

  .about-lux-bar__item:nth-child(2) {
    border-bottom: 1px solid rgba(212, 175, 75, 0.22);
  }

  .about-lux-bar__item:nth-child(3) {
    border-inline-end: 1px solid rgba(212, 175, 75, 0.22);
  }

  .about-lux-bar__item--statement {
    grid-column: 1 / -1;
    border-inline-end: none;
    border-top: 1px solid rgba(212, 175, 75, 0.22);
    padding-top: clamp(24px, 3vw, 32px);
  }
}

@media (max-width: 540px) {
  .about-lux-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .about-lux-bar__item {
    padding: 20px 0;
  }

  .about-lux-bar__item:not(:last-child) {
    border-inline-end: none;
    border-bottom: 1px solid rgba(212, 175, 75, 0.18);
  }

  .about-lux-bar__item--statement {
    padding-top: 24px;
    border-top: none;
  }
}

/* ── Partners luxury grid ── */
.partners-section {
  padding-top: 0;
}

.partners-grid--luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 0;
}

.partner-card--luxury {
  padding: clamp(28px, 3.5vw, 36px) clamp(20px, 2.5vw, 28px);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--lux-ease), box-shadow 0.5s, border-color 0.5s;
}

.partner-card--luxury::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--lux-ease);
}

.partner-card--luxury:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 75, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 0 32px rgba(212, 175, 75, 0.05);
}

.partner-card--luxury:hover::before {
  transform: scaleX(1);
}

.partner-logo--luxury {
  width: 100%;
  height: clamp(120px, 16vw, 168px);
  margin-bottom: 22px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--lux-ease);
}

.partner-card--luxury:hover .partner-logo--luxury {
  transform: scale(1.03);
}

.partner-logo--luxury img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(212, 175, 75, 0.18));
  animation: partnerLogoGlow 3.5s ease-in-out infinite alternate;
}

.partner-card--luxury:hover .partner-logo--luxury img {
  filter: drop-shadow(0 0 18px rgba(212, 175, 75, 0.38));
}

@keyframes partnerLogoGlow {
  from { filter: drop-shadow(0 0 8px rgba(212, 175, 75, 0.12)); }
  to { filter: drop-shadow(0 0 16px rgba(212, 175, 75, 0.28)); }
}

.partner-name--luxury {
  font-family: var(--fSerif);
  font-size: var(--partner-name-size, clamp(1.35rem, 2.5vw, 1.85rem));
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    105deg,
    #c5a059 0%,
    #f0e2bc 22%,
    #fff8e7 45%,
    #d4af37 55%,
    #f0e2bc 78%,
    #c5a059 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: partnerNameShimmer 5s linear infinite;
}

.partner-card--luxury:hover .partner-name--luxury {
  animation-duration: 3s;
}

@keyframes partnerNameShimmer {
  to { background-position: 220% center; }
}

@media (max-width: 1100px) {
  .partners-grid--luxury {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .partners-grid--luxury {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .partners-grid--luxury {
    grid-template-columns: 1fr;
  }
}

/* ── Services glass cards ── */
.svc-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--lux-ease), box-shadow 0.5s, border-color 0.5s;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--lux-ease);
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 75, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-title {
  font-family: var(--fSerif);
}

@media (prefers-reduced-motion: reduce) {
  .lux-ambient__glow,
  .lux-loader__mark,
  .lux-loader__line,
  .hero-content.hero-reveal-ready,
  .partner-logo--luxury img,
  .partner-name--luxury {
    animation: none;
  }

  .partner-logo--luxury img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 75, 0.2));
  }

  .partner-name--luxury {
    color: var(--gold-light);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
