/* ==========================================================================
   Mon Site Elementor — Hero Section
   ========================================================================== */

.ms-hero {
  padding: 130px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  background: var(--ms-cream);
  box-sizing: border-box;
}

/* --- Left column ---------------------------------------------------------- */
.ms-hero__left {
  max-width: 520px;
}

.ms-hero__headline {
  font-family: var(--ms-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.07;
  color: var(--ms-near-black);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.ms-hero__divider {
  width: 44px;
  height: 2px;
  background: var(--ms-gold-btn);
  margin-bottom: 22px;
  border: none;
}

.ms-hero__subtitle {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ms-grey);
  max-width: 420px;
  margin: 0 0 36px;
  font-weight: 400;
}

.ms-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Right column / image ------------------------------------------------- */
.ms-hero__right {
  position: relative;
}

.ms-hero__image-wrap {
  position: relative;
  overflow: hidden;
  background: #1a1510;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  border-radius: 2px;
}

.ms-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

/* Placeholder (when no image set) */
.ms-hero__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2c2218 0%, #1a1410 55%, #0e0b08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
}

.ms-hero__placeholder-inner {
  text-align: center;
  color: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--ms-sans);
}

/* Play button overlay */
.ms-hero__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.ms-hero__play-btn {
  width: 54px; height: 54px;
  background: var(--ms-gold-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.ms-hero__play-btn svg {
  width: 16px;
  margin-left: 3px;
}

.ms-hero__play-overlay:hover .ms-hero__play-btn {
  transform: scale(1.07);
  background: var(--ms-gold-light);
}

/* "Watch Introduction" caption */
.ms-hero__play-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10, 8, 5, 0.75) 0%, transparent 100%);
  padding: 32px 20px 16px;
  text-align: center;
  pointer-events: none;
}

.ms-hero__play-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.07em;
  font-family: var(--ms-sans);
  font-weight: 400;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .ms-hero {
    padding: 120px 28px 60px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ms-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 110px 20px 56px;
  }
  .ms-hero__right { display: none; }
  .ms-hero__left { max-width: 100%; }
}
