/* Dark premium hero + light body (default) */

body {
  background: var(--color-warm-white);
  color: var(--color-ink);
}

/* —— Dark hero only —— */
.luxury-hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding-block: clamp(3.25rem, 7vw, 6.25rem);
  background:
    radial-gradient(circle at 78% 36%, rgba(212, 160, 23, 0.16), transparent 40%),
    radial-gradient(circle at 12% 78%, rgba(26, 74, 58, 0.5), transparent 46%),
    linear-gradient(160deg, #050C09 0%, #0A1510 45%, #0D1F18 100%);
  color: var(--color-ivory);
  box-sizing: border-box;
}

/* Extend hero paint upward so no light seam can show under the nav */
.luxury-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  height: 48px;
  background: #050C09;
  z-index: 0;
  pointer-events: none;
}

.luxury-hero__geom {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.luxury-hero__geom-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.luxury-hero__grid {
  z-index: 3;
}

/* Homepage: original header colors + no white seam under nav.
   Cream main canvas prevents black bars between light sections. */
body:has(.luxury-hero) {
  background: var(--color-warm-white, #FCFAF5);
}

#main-content:has(.luxury-hero) {
  margin: 0;
  padding: 0;
  background: var(--color-warm-white, #FCFAF5);
}

body:has(.luxury-hero) > .offcanvas {
  position: fixed !important;
}

body:has(.luxury-hero) .announcement-bar {
  margin: 0;
  background-color: var(--color-midnight, #061720);
  border-bottom: 1px solid rgba(248, 243, 232, 0.08);
}

body:has(.luxury-hero) .main-header {
  background-color: var(--color-navy, #092330);
  border-bottom: none;
  margin: 0;
  /* Cover any light gap under sticky header with hero-top color (no layout shift) */
  box-shadow: 0 1px 0 0 var(--color-navy, #092330), 0 28px 0 0 #050C09;
}

body:not(:has(.luxury-hero)) .main-header {
  border-bottom: 1px solid rgba(248, 243, 232, 0.08);
}

/* Stack home sections flush — no seams between blocks */
#main-content:has(.luxury-hero) > section {
  margin: 0 !important;
  border: 0;
  box-shadow: none;
  width: 100%;
}

#main-content:has(.luxury-hero) > .luxury-hero {
  margin: 0 !important;
  position: relative;
  z-index: 0;
}

#main-content:has(.luxury-hero) > section + section {
  border-top: 0;
  margin-top: 0 !important;
}


.luxury-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: rgba(18, 53, 40, 0.75);
  border: 1px solid rgba(232, 197, 106, 0.22);
  color: rgba(247, 241, 230, 0.9);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.luxury-hero__badge--text {
  padding: 0.45rem 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.luxury-hero__avatars {
  display: inline-flex;
}

.luxury-hero__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #0A1510;
  object-fit: cover;
  margin-inline-end: -8px;
}

.luxury-hero__title {
  font-family: var(--font-family-serif);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.08;
  color: var(--color-warm-white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.luxury-hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.luxury-hero__title-inner {
  display: block;
  will-change: transform;
}

.luxury-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #F0B429 0%, #D48A12 55%, #C47A20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[dir="rtl"] .luxury-hero__title {
  letter-spacing: 0;
  line-height: 1.18;
  font-weight: 800;
}

[dir="rtl"] .luxury-hero__desc {
  line-height: 1.85;
  font-size: 1.05rem;
}

.luxury-hero__ctas .btn-premium-gold {
  min-height: 3rem;
  padding-inline: 1.35rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .luxury-hero__arch {
    animation: none !important;
  }
  .luxury-hero .motion-float,
  .luxury-hero .motion-rotate-cw,
  .luxury-hero .motion-rotate-ccw {
    animation: none !important;
  }
}

.luxury-hero__desc {
  color: rgba(247, 241, 230, 0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.luxury-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.luxury-hero .btn-premium-gold {
  background: linear-gradient(135deg, #F0B429 0%, #D48A12 55%, #C47A20 100%);
  color: #1A1205 !important;
  border: none;
  box-shadow: 0 10px 40px rgba(212, 160, 23, 0.28);
  border-radius: 10px;
}

.luxury-hero .btn-premium-secondary {
  background: transparent;
  color: var(--color-ivory) !important;
  border: 1px solid rgba(247, 241, 230, 0.28);
  border-radius: 10px;
}

.luxury-hero .btn-premium-secondary:hover {
  background: rgba(247, 241, 230, 0.06);
  border-color: var(--color-soft-gold);
}

.luxury-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(247, 241, 230, 0.75);
  font-size: 0.9rem;
}

.luxury-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.luxury-hero__features svg {
  width: 16px;
  height: 16px;
  color: var(--color-soft-gold);
}

.luxury-hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.luxury-hero__arch {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 18px 18px / 42% 42% 18px 18px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(240, 180, 41, 0.85), rgba(196, 122, 32, 0.35) 55%, transparent 100%);
  box-shadow: 0 0 80px rgba(212, 160, 23, 0.25);
}

.luxury-hero__arch-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #07140f;
  border: 1px solid rgba(232, 197, 106, 0.35);
}

.luxury-hero__arch-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxury-hero__ornaments {
  z-index: 1;
}

.luxury-hero .hero-ornament {
  color: #E8C56A;
}

.luxury-hero .hero-ornament--star-cw {
  opacity: 0.16;
  top: 8%;
  right: 4%;
  width: 140px;
  height: 140px;
}

.luxury-hero .hero-ornament--star-ccw {
  opacity: 0.12;
  bottom: 18%;
  left: 3%;
  width: 90px;
  height: 90px;
}

.luxury-hero .hero-ornament--rosette {
  opacity: 0.14;
  bottom: 10%;
  right: 38%;
  width: 100px;
  height: 100px;
}

.luxury-hero .hero-ornament--shimmer-1,
.luxury-hero .hero-ornament--shimmer-2,
.luxury-hero .hero-ornament--shimmer-3 {
  color: #F0B429;
  opacity: 0.28;
  filter: drop-shadow(0 0 6px rgba(240, 180, 41, 0.45));
}

.luxury-hero .hero-crescent-hanger {
  left: 58%;
  opacity: 0.95;
}

.luxury-hero__arch {
  animation: luxury-arch-glow 5.5s ease-in-out infinite;
}

@keyframes luxury-arch-glow {
  0%, 100% { box-shadow: 0 0 80px rgba(212, 160, 23, 0.22); }
  50% { box-shadow: 0 0 110px rgba(240, 180, 41, 0.38); }
}

.glass-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(10, 21, 16, 0.72);
  border: 1px solid rgba(232, 197, 106, 0.22);
  backdrop-filter: blur(12px);
  color: var(--color-ivory);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-width: 210px;
  z-index: 2;
  will-change: transform;
}

.glass-float span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(212, 160, 23, 0.16);
  color: var(--color-soft-gold);
  flex-shrink: 0;
}

.glass-float--1 { top: 12%; left: 0; }
.glass-float--2 { top: 42%; right: 0; }
.glass-float--3 { bottom: 14%; left: 6%; }

/* —— Light body sections —— */
.luxury-trust {
  padding-block: 1.5rem;
  border-block: none;
  background: var(--color-ivory);
  display: flow-root;
}

.luxury-trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  opacity: 0.55;
  color: var(--color-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.luxury-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #c2e8d6 0%, #a8dcc4 52%, #96d4b8 100%);
  border: 1px solid rgba(6, 79, 60, 0.28);
  box-shadow: 0 10px 28px rgba(6, 79, 60, 0.12);
}

.luxury-stats__item { text-align: center; }

.luxury-stats__value {
  display: block;
  font-family: var(--font-family-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #9a6610;
  font-weight: 800;
}

.luxury-stats__label {
  color: #2f4f42;
  font-size: 0.85rem;
  font-weight: 600;
}

.luxury-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--color-warm-white);
  /* Contain child margins so they never open a gap above/below the section */
  display: flow-root;
}

.luxury-section--alt {
  background: var(--color-ivory);
}

.luxury-kicker {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.luxury-heading {
  font-family: var(--font-family-serif);
  color: var(--qs-green-900);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.luxury-sub {
  color: var(--color-muted);
  max-width: 40rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--qs-cream);
  border: 1px solid var(--qs-border);
  box-shadow: var(--shadow-subtle);
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(197, 146, 63, 0.35);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(197, 146, 63, 0.12);
  color: var(--color-gold);
}

.why-card h3 {
  color: var(--color-deep-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

.page-shell,
.page-shell--ivory {
  background: var(--color-warm-white);
}

@media (max-width: 991px) {
  .why-grid,
  .luxury-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-float--2,
  .glass-float--3 {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-grid,
  .luxury-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luxury-hero__arch {
    animation: none !important;
  }
}
