/* =========================================
   HERO — ELARA IMAGE CENTERED PRO
========================================= */

.lux-hero.lux-hero--image {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.035), transparent 34%),
    #000;
  isolation: isolate;
}

.lux-hero--image .lux-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;

  overflow: hidden;
}

/* =========================================
   HERO MEDIA — DESKTOP REGULAR BAG
========================================= */

.lux-hero--image .lux-hero__media {
  position: relative;
  z-index: 1;

  width: min(860px, 78vw);
  height: min(620px, 74vh);

  display: grid;
  place-items: center;

  opacity: 0;
  transform: scale(.995);
  animation: luxFadeSoft .8s ease-out forwards;
  animation-delay: .06s;
}

.lux-hero--image .lux-hero__bg {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center center;

  filter:
    contrast(1.03)
    saturate(1.02)
    brightness(1.08);

  transform: translateZ(0);
}

/* premium dark focus over product */
.lux-hero--image .lux-hero__media::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,0) 38%, rgba(0,0,0,.18) 76%, rgba(0,0,0,.36) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.02), rgba(0,0,0,.14));
}

/* subtle external vignette */
.lux-hero.lux-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  background:
    linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.26) 100%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 48%, rgba(0,0,0,.32) 100%);
}

/* =========================================
   HERO TEXT
========================================= */

.lux-hero--image .lux-center {
  position: absolute;
  inset: 0;
  z-index: 5;

  display: grid;
  place-items: center;

  padding: clamp(18px, 3vw, 32px);
  text-align: center;
  pointer-events: none;
}

.lux-hero--image .lux-center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;

  width: min(760px, 88vw);
  height: 220px;

  transform: translate(-50%, -50%);

  border-radius: 999px;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(0,0,0,.44),
    rgba(0,0,0,.16) 55%,
    rgba(0,0,0,0) 78%
  );

  filter: blur(4px);
}

.lux-hero--image .lux-center > div {
  position: relative;
  z-index: 1;

  width: min(760px, 88vw);
  padding: 0;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;

  opacity: 0;
  transform: translateY(10px);
  animation: luxFadeUp .75s ease-out forwards;
  animation-delay: .18s;

  pointer-events: auto;
}

.lux-hero--image .lux-center h1 {
  margin: 0;

  color: #fff;

  font-family: var(--lux-font-display, "Cormorant Garamond", serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .025em;
  text-transform: uppercase;

  text-shadow: 0 14px 48px rgba(0,0,0,.66);
}

.lux-hero--image .lux-center p {
  margin: 12px 0 0;

  color: rgba(255,255,255,.9);

  font-family: var(--lux-font-ui, Inter, system-ui, sans-serif);
  font-size: clamp(10px, .85vw, 12px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;

  text-shadow: 0 10px 32px rgba(0,0,0,.68);
}

.lux-hero--image .lux-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 22px;
  min-height: 44px;
  padding: 0 22px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);

  color: #fff;
  text-decoration: none;

  font-family: var(--lux-font-ui, Inter, system-ui, sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;

  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.lux-hero--image .lux-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.075);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes luxFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxFadeSoft {
  from {
    opacity: 0;
    transform: scale(.992);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================
   HERO TABLET
========================================= */

@media (max-width: 980px) {
  .lux-hero.lux-hero--image {
    min-height: 100svh;
    height: 100svh;
  }

  .lux-hero--image .lux-hero__media {
    width: min(780px, 104vw);
    height: 80svh;
  }

  .lux-hero--image .lux-center h1 {
    font-size: clamp(32px, 7vw, 50px);
  }
}

/* =========================================
   HERO MOBILE — CENTERED BIG PRODUCT
========================================= */

@media (max-width: 768px) {
  .lux-hero.lux-hero--image {
    min-height: 100svh;
    height: 100svh;
  }

  .lux-hero--image .lux-hero__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lux-hero--image .lux-hero__media {
    position: relative;

    width: 690px;
    max-width: none;
    height: 100svh;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    opacity: 1;
    animation: none;
    transform: none;
  }

  .lux-hero--image .lux-hero__bg {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center center;

    filter:
      contrast(1.04)
      saturate(1.04)
      brightness(1.12);
  }

  .lux-hero--image .lux-hero__media::after {
    background:
      radial-gradient(circle at 50% 48%, rgba(0,0,0,0) 42%, rgba(0,0,0,.16) 78%, rgba(0,0,0,.34) 100%),
      linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,.16));
  }

  .lux-hero--image .lux-center {
    place-items: center;
    padding: 18px;
  }

  .lux-hero--image .lux-center::after {
    top: 50%;
    bottom: auto;

    width: 108vw;
    height: 210px;

    transform: translate(-50%, -44%);

    background: radial-gradient(
      circle at 50% 50%,
      rgba(0,0,0,.34),
      rgba(0,0,0,.13) 58%,
      rgba(0,0,0,0) 82%
    );
  }

  .lux-hero--image .lux-center > div {
    width: min(390px, 90vw);
  }

  .lux-hero--image .lux-center h1 {
    font-size: clamp(28px, 8.4vw, 40px);
    line-height: .98;
    letter-spacing: .018em;
  }

  .lux-hero--image .lux-center p {
    margin-top: 11px;
    font-size: 10.5px;
    letter-spacing: .18em;
  }

  .lux-hero--image .lux-cta {
    margin-top: 20px;
    min-height: 42px;
    padding: 0 20px;
    width: auto;
    min-width: 148px;
    font-size: 13px;
  }
}

/* =========================================
   HERO SMALL MOBILE
========================================= */

@media (max-width: 520px) {
  .lux-hero--image .lux-hero__media {
    width: 660px;
    height: 100svh;
  }

  .lux-hero--image .lux-center {
    padding-inline: 16px;
  }

  .lux-hero--image .lux-center h1 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .lux-hero--image .lux-center p {
    font-size: 10px;
    letter-spacing: .16em;
  }
}

/* =========================================
   HERO VERY SMALL MOBILE
========================================= */

@media (max-width: 390px) {
  .lux-hero--image .lux-hero__media {
    width: 620px;
  }

  .lux-hero--image .lux-center h1 {
    font-size: 30px;
  }

  .lux-hero--image .lux-center p {
    font-size: 9.8px;
    letter-spacing: .15em;
  }

  .lux-hero--image .lux-cta {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12.5px;
  }
}