/* ==========================================================================
   Homepage Hero — Premium Supper-Club
   Left content + right sliced staircase image + gold geometric overlays
   ========================================================================== */

.hero-home {
  position: relative;
  overflow: hidden;
}

.hero-home__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-10);
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-10);
  min-height: calc(100vh - var(--header-height));
  align-items: center;
}

@media (max-width: 960px) {
  .hero-home__inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: calc(var(--header-height) + var(--space-5));
    min-height: auto;
    gap: var(--space-8);
  }
}

/* -- Left Content -- */

.hero-home__content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
}

.hero-home__lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
  max-width: 520px;
}

.hero-home__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-home__tags {
  margin-top: 0;
}

@media (max-width: 520px) {
  .hero-home__cta-group {
    flex-direction: column;
  }

  .hero-home__cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* -- Right Visual: Sliced Staircase Panels -- */

.hero-home__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 520px;
}

/* Geometric ornaments behind panels */

.hero-visual__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-ornament-svg {
  width: 100%;
  height: 100%;
}

/* Staircase panel grid */

.hero-panels {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-right: 0;
  height: 520px;
}

.hero-panel {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(201, 164, 103, 0.12);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-slow), box-shadow var(--transition-normal);
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(201, 164, 103, 0.25);
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(5, 6, 8, 0) 60%,
    rgba(5, 6, 8, 0.15) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Each panel shows a different crop of the SAME image */

.hero-panel--1 {
  width: 80px;
  height: 360px;
  margin-top: 0;
  background-position: 0% 15%;
  background-size: 600% auto;
}

.hero-panel--2 {
  width: 84px;
  height: 400px;
  margin-top: 20px;
  background-position: 20% 50%;
  background-size: 600% auto;
}

.hero-panel--3 {
  width: 88px;
  height: 440px;
  margin-top: 40px;
  background-position: 40% 30%;
  background-size: 600% auto;
}

.hero-panel--4 {
  width: 82px;
  height: 390px;
  margin-top: 60px;
  background-position: 60% 60%;
  background-size: 600% auto;
}

.hero-panel--5 {
  width: 78px;
  height: 340px;
  margin-top: 80px;
  background-position: 80% 20%;
  background-size: 600% auto;
}

.hero-panel--6 {
  width: 70px;
  height: 280px;
  margin-top: 100px;
  background-position: 100% 40%;
  background-size: 600% auto;
}

@media (max-width: 1100px) {
  .hero-panel--5,
  .hero-panel--6 {
    display: none;
  }
}

@media (max-width: 960px) {
  .hero-home__visual {
    min-height: 380px;
    justify-content: center;
  }

  .hero-panels {
    height: 380px;
  }

  .hero-panel--1 {
    width: 68px;
    height: 280px;
    background-size: 500% auto;
  }

  .hero-panel--2 {
    width: 72px;
    height: 310px;
    margin-top: 15px;
    background-size: 500% auto;
  }

  .hero-panel--3 {
    width: 76px;
    height: 340px;
    margin-top: 30px;
    background-size: 500% auto;
  }

  .hero-panel--4 {
    width: 70px;
    height: 300px;
    margin-top: 45px;
    background-size: 500% auto;
  }
}

@media (max-width: 520px) {
  .hero-panel--4 {
    display: none;
  }

  .hero-panels {
    gap: 6px;
  }
}

/* ==========================================================================
   Feature Strip — 4 Icon Blocks Below Hero
   ========================================================================== */

.feature-strip {
  position: relative;
  background: linear-gradient(to bottom,
    rgba(10, 7, 6, 0.95),
    rgba(5, 6, 8, 0.98)
  );
  border-top: 1px solid rgba(201, 164, 103, 0.12);
  border-bottom: 1px solid rgba(201, 164, 103, 0.08);
  padding-block: var(--space-8);
}

.feature-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .feature-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
}

@media (max-width: 520px) {
  .feature-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
  }
}

.feature-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-4);
}

.feature-strip__icon-frame {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 164, 103, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(201, 164, 103, 0.12), transparent 60%),
              rgba(5, 6, 8, 0.8);
  flex-shrink: 0;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-strip__item:hover .feature-strip__icon-frame {
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(201, 164, 103, 0.25);
}

.feature-strip__icon-frame svg {
  width: 26px;
  height: 26px;
}

.feature-strip__title {
  font-family: var(--font-display);
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ivory);
  font-weight: 500;
}

.feature-strip__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  max-width: 200px;
  margin: 0 auto;
}

/* ==========================================================================
   Existing Homepage Sections (kept intact)
   ========================================================================== */

.section-header {
  margin-bottom: var(--space-6);
}

.editorial-bento {
  align-items: stretch;
}

.editorial-card {
  height: 100%;
}

.editorial-card--primary {
  box-shadow: var(--shadow-medium);
}

.poker-section__grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-section__image {
  box-shadow: var(--shadow-medium);
}

.gastro-section__grid {
  gap: var(--space-8);
}

.gastro-section__table {
  align-self: stretch;
}

.private-corporate__grid {
  align-items: stretch;
  gap: var(--space-6);
}

.stories-section__grid {
  gap: var(--space-8);
}

.stories-section__quote-meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--gray-200);
}

.stories-section__gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-cta {
  padding-bottom: var(--space-12);
}

.home-cta__card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 900px) {
  .home-cta__card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.home-cta__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

@media (max-width: 480px) {
  .home-cta__links {
    flex-direction: column;
    align-items: flex-start;
  }
}
