.luxury-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("/images/hero-bg.png") center/cover no-repeat; /* 🔥 background image */
  color: #fff;
  overflow: hidden;
  padding: 2rem;
}

/* 🌌 Radial Glow Layer */
.luxury-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  width: 1300px;
  height: 1300px;
  /* background: radial-gradient(
    circle,
    rgba(33, 87, 84, 0.6) 28%,
    rgba(58, 69, 100, 0.2) 20%,
    rgba(128, 90, 213, 0.35) 15%,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 70%
  ); */
  /* filter: blur(90px); */
  /* transform: translateX(-50%); */
  z-index: 1; /* above image, below overlay */
}

/* Text & Content */
.luxury-content {
  position: relative;
  z-index: 3; /* above everything */
  max-width: 750px;
  margin: 0 auto;
}

/* --- Typography --- */
/* --- Typography --- */
.luxury-content h1 {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 6vw, 64px); /* never below 40px */
  line-height: clamp(50px, 7vw, 76px);
  letter-spacing: -0.04em; /* -4% */
  margin-bottom: 1rem;

  /* Gradient Text */
  background: linear-gradient(90deg, #ffffff, #bababa, #00000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.luxury-content p {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(17px, 2.5vw, 18px); /* min 17px */
  line-height: clamp(26px, 3.5vw, 28px);
  letter-spacing: -0.02em;
  color: #9ca3af;
  margin-bottom: 2rem;
}

/* --- Button --- */
.luxury-btn {
  display: inline-block;
  background: #fff;
  color: #1d262b;

  text-decoration: none;
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.6rem, 4vw, 2rem);
  border-radius: 8px;
  font-size: clamp(15px, 2vw, 16px); /* never too small */
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.luxury-btn:hover,
.luxury-btn:focus {
  background: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.luxery_mb {
  display: none;
}
/* --- Responsive --- */

@media only screen and (max-width: 600px) {
  .luxury-hero {
    padding: 20px;
  }
  .luxery_des {
    display: none;
  }
  .luxery_mb {
    display: block;
  }
}
