.mc-hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--mc-charcoal);
  margin-top: -186px;
  z-index: 1;
}

.mc-hero-video__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.mc-hero-video__fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 246, 0.3) 0%,
    rgba(250, 248, 246, 0.06) 18%,
    rgba(250, 248, 246, 0.0) 45%,
    rgba(250, 248, 246, 0.08) 70%,
    rgba(250, 248, 246, 0.6) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.mc-hero-video__pause-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid rgba(230, 222, 218, 0.3);
  background: rgba(43, 38, 35, 0.2);
  color: #E6DEDA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
  padding: 0;
}

.mc-hero-video__pause-btn:hover {
  background: rgba(43, 38, 35, 0.4);
  border-color: rgba(230, 222, 218, 0.5);
}

.mc-hero-video__pause-btn svg {
  width: 20px;
  height: 20px;
}

.mc-hero-video__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  padding-top: 60px;
}

.mc-hero-video__logo {
  width: 420px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 1.5rem;
}

.mc-hero-video__tagline {
  font-family: var(--mc-font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #E6DEDA;
  margin-bottom: 2.5rem;
  text-align: center;
}

.mc-hero-video__cta {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--mc-walnut);
  border: none;
  border-radius: var(--mc-radius-pill);
  color: #F8F5F2;
  font-family: var(--mc-font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.mc-hero-video__cta:hover {
  background: var(--mc-walnut-hover);
}

@media (max-width: 768px) {
  .mc-hero-video {
    margin-top: -112px;
    min-height: 400px;
  }
  .mc-hero-video__pause-btn {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
  }
  .mc-hero-video__pause-btn svg {
    width: 16px;
    height: 16px;
  }
  .mc-hero-video__content {
    padding-top: 30px;
  }
  .mc-hero-video__logo {
    width: 260px;
  }
  .mc-hero-video__tagline {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  .mc-hero-video__cta {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
  }
}
